Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sling-web-component-loader

Package Overview
Dependencies
Maintainers
1
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sling-web-component-loader

The loader Component. It´s aimed to be used in pair with business components that demands requests and component renders with processess delays. The component must show the loader element while loading the data source required to populate and render his v

  • 0.10.1
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-25%
Maintainers
1
Weekly downloads
 
Created
Source

sling-web-component-loader

The loader Component. It´s aimed to be used in pair with business components that demands requests and component renders with processess delays. The component must show the loader element while loading the data source required to populate and render his view.

This component renders a card element with the merchant contacts information within. It table basic components as content wrapper.

Usage

This is how you set the loader into the business component script structure In the business component script, the RENDER method must be made as show below:

    render() {
        return html`
        <div className="business-component loading_${this.loading}">
            <sling-loader loading="${this.loading}"></sling-loader>
            ... other components
        </div>
        `;
    }

The mapStateToProps function must include the LOADING property, which is used to map the state of the component API requests and responses and trigger the render changes.

export const mapStateToProps = state => ({
  apidata: // ...component data store node
  loading: state.globalReducer.loaders[instanceName],
});

Project Wiki:

https://stonepayments.atlassian.net/wiki/spaces/APICLIENTE

FAQs

Package last updated on 31 Jul 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc